From: Juergen Gross Date: Fri, 12 May 2017 13:10:51 +0000 (+0200) Subject: tools: don't require unavailable optional libraries in pkg-config files X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~2154 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=3946384089720eacd9d7357d37cd4a99076d074e;p=xen.git tools: don't require unavailable optional libraries in pkg-config files blktap2 is optional, so there should be no pkg-config file requiring xenblktapctl if it isn't enabled for the build. Add a filter mechanism to tools/Rules.mk to filter out optional libraries. Signed-off-by: Juergen Gross Acked-by: Wei Liu Acked-by: Ian Jackson Release-acked-by: Julien Grall --- diff --git a/tools/Rules.mk b/tools/Rules.mk index 7cb28f5c4e..f55fb669b8 100644 --- a/tools/Rules.mk +++ b/tools/Rules.mk @@ -175,6 +175,7 @@ CFLAGS_libblktapctl = SHDEPS_libblktapctl = LDLIBS_libblktapctl = SHLIB_libblktapctl = +PKG_CONFIG_REMOVE += xenblktapctl endif CFLAGS_libxenlight = -I$(XEN_XENLIGHT) $(CFLAGS_libxenctrl) $(CFLAGS_xeninclude) @@ -250,6 +251,8 @@ endif PKG_CONFIG_DIR ?= $(XEN_ROOT)/tools/pkg-config +PKG_CONFIG_FILTER = $(foreach l,$(PKG_CONFIG_REMOVE),-e 's!\([ ,]\)$(l),!\1!g' -e 's![ ,]$(l)$$!!g') + $(PKG_CONFIG_DIR)/%.pc: %.pc.in Makefile mkdir -p $(PKG_CONFIG_DIR) @sed -e 's!@@version@@!$(PKG_CONFIG_VERSION)!g' \ @@ -259,7 +262,8 @@ $(PKG_CONFIG_DIR)/%.pc: %.pc.in Makefile -e 's!@@firmwaredir@@!$(XENFIRMWAREDIR)!g' \ -e 's!@@libexecbin@@!$(LIBEXEC_BIN)!g' \ -e 's!@@cflagslocal@@!$(PKG_CONFIG_CFLAGS_LOCAL)!g' \ - -e 's!@@libsflag@@!-Wl,-rpath-link=!g' < $< > $@ + -e 's!@@libsflag@@!-Wl,-rpath-link=!g' \ + $(PKG_CONFIG_FILTER) < $< > $@ %.pc: %.pc.in Makefile @sed -e 's!@@version@@!$(PKG_CONFIG_VERSION)!g' \ @@ -269,4 +273,5 @@ $(PKG_CONFIG_DIR)/%.pc: %.pc.in Makefile -e 's!@@firmwaredir@@!$(XENFIRMWAREDIR)!g' \ -e 's!@@libexecbin@@!$(LIBEXEC_BIN)!g' \ -e 's!@@cflagslocal@@!!g' \ - -e 's!@@libsflag@@!-L!g' < $< > $@ + -e 's!@@libsflag@@!-L!g' \ + $(PKG_CONFIG_FILTER) < $< > $@